home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 7: Sunsite
/
Linux Cubed Series 7 - Sunsite Vol 1.iso
/
system
/
mail
/
mailclea.000
/
mailclea
/
mailclear
/
Makefile
< prev
next >
Wrap
Makefile
|
1996-03-02
|
725b
|
55 lines
#
# Makefile for MailClear 1.0
#
# C compiler
C = gcc
# C compilation flags
# Add here any additional compilation flags you need.
CFLAGS = -O3 -m486 -pipe -fno-strength-reduce
# Loader flags
# Add here any additional loader flags you need.
LDFLAGS =
# Additional libraries
LIBS =
# Other stuff
INSTALL=install
INSTDIR=/home/mydirectory/bin
# Everything else probably doesn't need changing
SOURCE = mailclear.c
OBJECT = mailclear.o
mailclear: $(OBJECT)
$(CC) $(LDFLAGS) $(OBJECT) -o mailclear $(DBLIB) $(LIBS)
.c.o:
$(CC) $(CFLAGS) $(DBINCLUDE) -c $<
mailclear.o: mailclear.c maildefs.h
clean:
-rm -f *.o core mailclear
install: mailclear
$(INSTALL) -m 750 mailclear $(INSTDIR)
# END-OF-FILE